home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 7 / FM Towns Free Software Collection 7.iso / t_os / gpen32k / source.exe / LIB / OSRC / OEGBPUT.C < prev    next >
C/C++ Source or Header  |  1993-03-21  |  487b  |  22 lines

  1. /************************************************************
  2. *   共通一般ライブラリー                OKOME System 2      *
  3. ************************************************************/
  4.  
  5. #include    <EGB.H>
  6. #include    <normlib.h>
  7.  
  8. extern char work[];
  9.  
  10. void egbput(int x, int y, int x2, int y2, char *pat)
  11. {
  12.     char pa[64];
  13.     DWORD(pa) = (int)pat;
  14.     WORD(pa+4) = 0x14;
  15.     WORD(pa+6) = x;
  16.     WORD(pa+8) = y;
  17.     WORD(pa+0xA) = x2;
  18.     WORD(pa+0xC) = y2;
  19.     EGB_putBlock( work, 0, pa );
  20. }
  21.  
  22.